-
-
Notifications
You must be signed in to change notification settings - Fork 851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[18.0][MIG] partner_title_order: Migration to 18.0 #1862
base: 18.0
Are you sure you want to change the base?
Conversation
Currently translated at 100.0% (5 of 5 strings) Translation: partner-contact-14.0/partner-contact-14.0-partner_title_order Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_title_order/fr/
Currently translated at 100.0% (5 of 5 strings) Translation: partner-contact-14.0/partner-contact-14.0-partner_title_order Translate-URL: https://translation.odoo-community.org/projects/partner-contact-14-0/partner-contact-14-0-partner_title_order/es/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG
@@ -14,7 +14,7 @@ def test_default_order(self): | |||
partner_titles = self.env["res.partner.title"].search([]) | |||
self.assertEqual( | |||
partner_titles.mapped("name"), | |||
partner_titles.sorted(lambda x: x.name).mapped("name"), | |||
partner_titles.sorted(lambda x: (x.sequence, x.name)).mapped("name"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this change because the test failed ?
IMO it should not have, all sequence fields should have been set to 10 ?
Just a question to understand the change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was my mistake! There was a bit of confusion between two test cases, which led to my change in that part.
40cba64
to
340a7f5
Compare
/ocabot migration partner_title_order |
|
||
|
||
class TestPartnerTitle(SavepointCase): | ||
class TestPartnerTitle(common.TransactionCase): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Kimkhoi3010 FYI, to avoid the tracking_disable context change here under, you can use BaseCommon class from base addon instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hello @rousseldenis thanks for your time.
340a7f5
to
8c6150b
Compare
No description provided.